
function Gfx(pic,x,y)
{
    var s='<html><head><TITLE>TrendyHair</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"></head>\n'; 
     s=s+'<body BGCOLOR="#ffffff" MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0>\n';
    s=s+'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="256" width="320"><param name="src" value="mov/'+pic+'"><param name="autoplay" value="true"><param name="type" value="video/quicktime" height="256" width="320"><embed src="mov/'+pic+'" height="256" width="320" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></object>\n';
    s=s+'</body></html>';

    var f = null;
    f = window.open('','','width='+x+',height='+y+',left=50,top=20,resizable=1,directories=0,location=0,menubar=0,scrollbars=0,status=0,toolbar=0');
    if(f != null) {
        if(f.opener == null) {
          f.opener = self
        }
        f.document.clear();
        f.document.write(s);
        f.document.close();
    }
}

