

function openwin(p,w,h,n)
{
var win = window.open("","","width=" + w + " , height=" + h + " , top=100 , left=100 , scrollbars=no, resizable=no")
win.document.open()
win.document.writeln("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/transitional.dtd'> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en-CA' lang='en-CA'> \n <head> \n <title>" + n + "</title> \n</head>");
win.document.writeln("<body style='margin:0px;padding:0px;'><img style='margin:0px' src='" + p + "' width='" +  w + "' height='" + h + "'></body></html>")
win.document.close();
}



