var picture;

function openPic(picturePath,pictureWidth,pictureHeight,adr)
{ adres=adr;// alert(adres);
 if (window.picture && !(window.picture.closed))
  window.picture.close();
 var windowWidth=parseInt(pictureWidth) + 0;
 var windowHeight=parseInt(pictureHeight) + 0;
 picture = window.open(picturePath,"embroidery","width="+windowWidth+",height="+windowHeight+",directories=no,toolbar=no,menubar=no,resizable=no,scrollbars=no");
}


function run_mov(mov,w,h) 
{ 
text = "<object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" width=\"" + w + "\" height=\"" + h + "\">\r\n";
text+="<param name=\"SRC\" value=\"" + mov + "\">\r\n";
text+="<param name=\"CONTROLLER\" value=\"true\">\r\n";
text+="<param name=\"AUTOPLAY\" value=\"true\">\r\n";
text+="<embed bgcolor=\"white\" src=\"" + mov + "\" CONTROLLER=\"true\" AUTOPLAY=\"true\" pluginspage=\"http://www.apple.com/quicktime/download/\" width=\"" + w + "\" height=\"" + h + "\"> \r\n";
text+="</object>\r\n";

document.write(text);
return 1;
} 



function run_movie(swf,w,h) 
{ 
text = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + w + "\" height=\"" + h + "\">\r\n";
text+="<param name=\"movie\" value=\"" + swf + "\">\r\n";
text+="<param name=\"menu\" value=\"false\">\r\n";
text+="<param name=\"quality\" value=\"high\">\r\n";
text+="<param name=\"bgcolor\" value=\"#ffffff\">\r\n";
text+="<embed src=\"" + swf + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + w + "\" height=\"" + h + "\" menu=\"false\" bgcolor=\"#ffffff\"> \r\n";
text+="</object>\r\n";

document.write(text);
return 1;

} 
function run_movie(swf,w,h,prm) 
{ 
text = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + w + "\" height=\"" + h + "\">\r\n";
text+="<param name=\"movie\" value=\"" + swf + "\">\r\n";
text+="<param name=\"menu\" value=\"false\">\r\n";
text+="<param name=\"quality\" value=\"high\">\r\n";
text+="<param name=\"bgcolor\" value=\"#ffffff\">\r\n";
text+="<param name=\"flashvars\" value=\"link=" + prm + "\">\r\n";
text+="<embed src=\"" + swf + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + w + "\" height=\"" + h + "\" menu=\"false\" flashvars=\"link=" + prm + "\" bgcolor=\"#ffffff\"> \r\n";
text+="</object>\r\n";

document.write(text);
return 1;
} 
