            	function VirtualMain(id){
					//alert(id)
					var line = document.getElementById("txtImprintT"+id+"").value;
					var style = document.getElementById("selStyle"+id+"").value;
					var txtImprintP = document.getElementById("txtImprintP"+id+"");
					txtImprintP.value = line;
					
					if (style == "1"){
						txtImprintP.style.fontFamily="Helvetica";
						txtImprintP.style.fontWeight="Normal";
						txtImprintP.style.fontStyle="Normal";
					}
					else if (style == "2"){
						txtImprintP.style.fontFamily="Helvetica";
						txtImprintP.style.fontWeight="Bold";
						txtImprintP.style.fontStyle="Normal";
					}
					else if (style == "3"){
						txtImprintP.style.fontFamily="Helvetica";
						txtImprintP.style.fontWeight="Normal";
						txtImprintP.style.fontStyle="Italic";
					}
					else if (style == "4"){
						txtImprintP.style.fontFamily="Times New Roman";
						txtImprintP.style.fontWeight="Normal";
						txtImprintP.style.fontStyle="Normal";
					}
					else{
						txtImprintP.style.fontFamily="Comic Sans MS";
						txtImprintP.style.fontWeight="Normal";
						txtImprintP.style.fontStyle="Normal";
					}
					}
				
				function ShowImpText1()
				{
					VirtualMain(1)
				}
				
				function ShowImpText2(){
				
					VirtualMain(2)
				}
				
				function ShowImpText3(){
				
					VirtualMain(3)
				}
				
				function ShowImpText4(){
				
					VirtualMain(4)
				}
				
				function ShowImpText5(){
				
					VirtualMain(5)
				}

