function activate_swf(swf_path) {
	document.open();
	//document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\"175\" HEIGHT=\"864\" id=\"leftside\" ALIGN=\"top\">");
	document.write("<object type=\"application/x-shockwave-flash\" data=\"" + swf_path + "\" width=\"175\" height=\"864\"  ALIGN=\"top\" id=\"leftside\">");
	document.write("<PARAM NAME=\"movie\" VALUE=\"" + swf_path + "\">");
	document.write("<param name=\"menu\" value=\"false\">");
	document.write("<PARAM NAME=\"quality\" VALUE=\"best\">");
	document.write("<param name=\"FlashVars\" value=\"spak=sv\">");
	document.write("<param name=\"scale\" value=\"exactfit\">");
	document.write("<param name=\"bgcolor\" value=\"#034966\">");
	//document.write("<EMBED src=\"" + swf_path + "\" quality=\"best\" bgcolor=\"#A1A282\"  WIDTH=\"175\" HEIGHT=\"864\" NAME=\"leftside\" ALIGN=\"top\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\">");
	document.write("<h1>ZeppelinDesign - <a href=\"http://www.zeppelindesign.com/\">Complete creative services for corporate branding</a></h1><br />" +
	"<h3>To view this page you need <a href=\"http://www.macromedia.com/go/getflashplayer\" target=\"_blank\">Macromedia Flash plug-in</a>.</h3><br />" +
	"<a href=\"services.php\">Creative services</a><br />" +
	"<a href=\"portfolio.php\">Creative services portofolio</a><br />" +
	"<a href=\"clients.php\">Clients</a><br />" +
	"<a href=\"contact.php\">Contact us for our creative services</a><br />");
	//document.write("</EMBED>");
	document.write("</OBJECT>");
	document.close();
}

function activate_swf_with_vars(swf_path, vars) {
	document.open();
	// document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\"175\" HEIGHT=\"864\" id=\"leftside\" ALIGN=\"top\">");
	document.write("<object type=\"application/x-shockwave-flash\" data=\"" + swf_path + "\" width=\"175\" height=\"864\"  ALIGN=\"top\" id=\"leftside\">");
	document.write("<PARAM NAME=\"movie\" VALUE=\"" + swf_path + "\">");
	document.write("<param name=\"menu\" value=\"false\">");
	document.write("<PARAM NAME=\"quality\" VALUE=\"best\">");
	document.write("<param name=\"FlashVars\" value=\"spak=sv" + vars + "\">");
	document.write("<param name=\"scale\" value=\"exactfit\">");
	document.write("<param name=\"bgcolor\" value=\"#034966\">");
	//document.write("<EMBED src=\"" + swf_path + "\" quality=\"best\" bgcolor=\"#A1A282\"  WIDTH=\"175\" HEIGHT=\"864\" NAME=\"leftside\" ALIGN=\"top\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\">");
	document.write("<h1>ZeppelinDesign - <a href=\"http://www.zeppelindesign.com/\">Complete creative services for corporate branding</a></h1><br />" +
	"<h3>To view this page you need <a href=\"http://www.macromedia.com/go/getflashplayer\" target=\"_blank\">Macromedia Flash plug-in</a>.</h3><br />" +
	"<a href=\"services.php\">Creative services</a><br />" +
	"<a href=\"portfolio.php\">Creative services portofolio</a><br />" +
	"<a href=\"clients.php\">Clients</a><br />" +
	"<a href=\"contact.php\">Contact us for our creative services</a><br />");
	//document.write("</EMBED>");
	document.write("</OBJECT>");
	document.close();
}

