//Ad Corner Scripts 
  			function Createframe(hrefnum) 
			  { 				
						var href1 = "http://ads.naftemporiki.gr/click?webspace=330&amp;dfl=yes";
						var href2 = "http://ads.naftemporiki.gr/click?webspace=332&amp;dfl=yes";						
						var href3 = "http://ads.naftemporiki.gr/click?webspace=333&amp;dfl=yes";
						//Test var href2 = "http://ads.naftemporiki.gr/click?webspace=341&amp;dfl=yes";
						var iframe = document.createElement('iframe');
						iframe.setAttribute("marginheight", 0);
						iframe.setAttribute("marginwidth", 0);
						iframe.setAttribute("scrolling", "no");
						iframe.setAttribute("frameBorder", 0);
						iframe.allowtransparency="false";
						iframe.setAttribute ("width", 960);
					
						 if (hrefnum == 1) {				 
							iframe.setAttribute('id', 'frame1');
							iframe.setAttribute('src', href1);
							document.getElementById("fuzz").appendChild(iframe);
																
						}
		 
						if (hrefnum == 2) {
								iframe.setAttribute('id', 'frame2');
								iframe.setAttribute('src', href2);
								document.getElementById("fuzz1").appendChild(iframe);
						}
		 
						if (hrefnum == 3) {
							iframe.setAttribute('id', 'frame3');
							iframe.setAttribute('src', href3);
							document.getElementById("fuzz3").appendChild(iframe);
						}  
				}
				
			function RemoveChild(hrefnum) 
				{ 			
					if (hrefnum == 1) {
						var fuzz = document.getElementById("fuzz");
						fuzz.removeChild(fuzz.getElementsByTagName("iframe").item(0));
					}
					if (hrefnum == 2) {
						var fuzz1 = document.getElementById("fuzz1");
						fuzz1.removeChild(fuzz1.getElementsByTagName("iframe").item(0));
					}
		 
					if (hrefnum == 3) {
						var fuzz3 = document.getElementById("fuzz3");
						fuzz3.removeChild(fuzz3.getElementsByTagName("iframe").item(0));
					}
				}
				
