// JavaScript Document

function PopupImage(src, width, height)
{
	var v = window.open('', '_blank' , 'width='+width+', height='+height);
	v.document.write("<img src='"+src+"' border='0'/>");
}

function PopupHtml(src, width, height)
{
	var v = window.open(src, '_blank' , 'width='+width+', height='+height);

}

function PopupImageEx(src, width, height)
{
	var v = window.open('', '_blank' , 'width='+width+', height='+height);
	v.document.write("<img src='"+src+"' border='0'/>");
}

